home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960715-19961006 / 000090_news@columbia.edu _Sun Jul 28 11:36:01 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id LAA07227 for <kermit.misc@watsun.cc.columbia.edu>; Sun, 28 Jul 1996 11:36:01 -0400 (EDT)
  3. Received: (from news@localhost) by newsmaster.cc.columbia.edu (8.7.5/8.7.3) id LAA29629 for kermit.misc@watsun; Sun, 28 Jul 1996 11:36:00 -0400 (EDT)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: C-Kermit protocol
  8. Date: 28 Jul 1996 15:35:40 GMT
  9. Organization: Columbia University
  10. Lines: 30
  11. Message-ID: <4tg1cc$a4m@apakabar.cc.columbia.edu>
  12. References: <4takie$ata@spot.Xpressnet.com> <4tdh2f$df4@jpradley.jpr.com>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <4tdh2f$df4@jpradley.jpr.com>,
  16. Jean-Pierre Radley,320 CPW,NYC,212-877-0440 <jpr@jpradley.jpr.com> wrote:
  17. : In article <4takie$ata@spot.Xpressnet.com>,  <pangann@mlc.mb.ca> wrote:
  18. : >Does C-Kermit support protocols other than Kermit ?  I need to transfer
  19. : >files to a bank in my city, I would like to use C-Kermit on OpenVMS Vax,
  20. : >however the protocol MUST be ASCII file transfer protocol.
  21. : What is the ASCII file transfer protocol?
  22. :
  23. The "ASCII" "protocol", sometimes also known as the "Xon/Xoff protocol", is
  24. the simple copying of a file from one computer to another through a
  25. communications link.  Like in DOS, instead of using Kermit (or Zmodem, or
  26. FTP) to transfer a file, you would:
  27.  
  28.   copy foo.bar com1
  29.  
  30. There is a widespread misconception that this is a good idea.  If it works
  31. at all, it's an accident.  It is practically guaranteed NOT to work if the
  32. file is more than a few lines long, has 8-bit data, or has control characters.
  33.  
  34. C-Kermit offers an improved version of this in its TRANSMIT command.
  35. Obviously, it uses the prevailing flow control method to reduce the chances
  36. of (note: NOT prevent) buffer overruns, and when used in text mode, utilizes
  37. the echo (if any) from the other end to know when to send the next line,
  38. which serves as a crude type of handshake, or higher-level flow control.
  39.  
  40. Read about it in Chapter 10 of "Using C-Kermit" or Chapter 12 of "Using
  41. MS-DOS Kermit".
  42.  
  43. - Frank